bufio.Writer.n (field)
27 uses
bufio (current package)
bufio.go#L575: n int
bufio.go#L616: b.n = 0
bufio.go#L625: if b.n == 0 {
bufio.go#L628: n, err := b.wr.Write(b.buf[0:b.n])
bufio.go#L629: if n < b.n && err == nil {
bufio.go#L633: if n > 0 && n < b.n {
bufio.go#L634: copy(b.buf[0:b.n-n], b.buf[n:b.n])
bufio.go#L636: b.n -= n
bufio.go#L640: b.n = 0
bufio.go#L645: func (b *Writer) Available() int { return len(b.buf) - b.n }
bufio.go#L652: return b.buf[b.n:][:0]
bufio.go#L656: func (b *Writer) Buffered() int { return b.n }
bufio.go#L670: n = copy(b.buf[b.n:], p)
bufio.go#L671: b.n += n
bufio.go#L680: n := copy(b.buf[b.n:], p)
bufio.go#L681: b.n += n
bufio.go#L694: b.buf[b.n] = c
bufio.go#L695: b.n++
bufio.go#L724: size = utf8.EncodeRune(b.buf[b.n:], r)
bufio.go#L725: b.n += size
bufio.go#L736: n := copy(b.buf[b.n:], s)
bufio.go#L737: b.n += n
bufio.go#L745: n := copy(b.buf[b.n:], s)
bufio.go#L746: b.n += n
bufio.go#L775: m, err = r.Read(b.buf[b.n:])
bufio.go#L784: b.n += m
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)